const compress/flate.maxNumLit
12 uses
compress/flate (current package)
huffman_bit_writer.go#L97: literalFreq: make([]int32, maxNumLit),
huffman_bit_writer.go#L99: codegen: make([]uint8, maxNumLit+offsetCodeCount+1),
huffman_bit_writer.go#L100: literalEncoding: newHuffmanEncoder(maxNumLit),
huffman_code.go#L65: h := newHuffmanEncoder(maxNumLit)
huffman_code.go#L68: for ch = 0; ch < maxNumLit; ch++ {
huffman_code.go#L277: h.freqcache = make([]literalNode, maxNumLit+1)
inflate.go#L23: maxNumLit = 286
inflate.go#L281: bits *[maxNumLit + maxNumDist]int
inflate.go#L375: if nlit > maxNumLit {
inflate.go#L534: case v < maxNumLit:
inflate.go#L812: f.bits = new([maxNumLit + maxNumDist]int)
inflate.go#L831: f.bits = new([maxNumLit + maxNumDist]int)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |